var runtime.mutexprofilerate

6 uses

	runtime (current package)
		mprof.go#L441: var mutexprofilerate uint64 // fraction sampled
		mprof.go#L452: 		return int(mutexprofilerate)
		mprof.go#L454: 	old := mutexprofilerate
		mprof.go#L455: 	atomic.Store64(&mutexprofilerate, uint64(rate))
		mprof.go#L464: 	rate := int64(atomic.Load64(&mutexprofilerate))
		sema.go#L125: 	if profile&semaMutexProfile != 0 && mutexprofilerate > 0 {